Business
Jobs
  • About Us
  • Solutions
    • Job Postings
      Post your job and receive qualified candidates in 48h.
    • Candidate Assessments
      500+ technical and psychological tests, plus anti-fraud.
    • Headhunting
      Tailor-made executive search from start to finish.
    • Payroll + EOR
      Payroll dispersal and EOR across 15+ LATAM countries.
  • Pricing
  • Jobs

0

1K
Views
What does In[num] mean in jupyter notebooks?

I know that In[*] means the kernel is running

enter image description here

But what does In[93] mean?

enter image description here

Does that mean the total number of seconds to execute the cell or is that the line number?

over 4 years ago · Santiago Trujillo
1 answers
Answer question

0

It's effectively a line number.

In is an array of all of the inputs you have entered during a session, and Out is a dictionary of the results from the corresponding inputs. You can use these to reference previous inputs and results; for example:

 In[1]:  0x7b
Out[1]:  123

 In[2]:  0x1c8
Out[2]:  456

 In[3]:  Out[1] + Out[2]
Out[3]:  579

 In[4]:  In
Out[4]:  ['', '0x7b', '0x1c8', 'Out[1] + Out[2]', 'In']

 In[5]:  Out
Out[5]:  {1: 123,
          2: 456,
          3: 579,
          4: ['', '0x7b', '0x1c8', 'Out[1] + Out[2]', 'In', 'Out']}
over 4 years ago · Santiago Trujillo Report
Answer question
Find remote jobs

Discover the new way to find a job!

Top jobs
Top job categories
Business
Post vacancy Pricing Sales
Legal
Terms and conditions Privacy policy
© 2026 PeakU Inc. All Rights Reserved.
Andres GPT
Show me some job opportunities
There's an error!